| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | define(['leaflet'], function (L) { |
||
| 34 | initialize: function (latlng) { |
||
| 35 | this.accuracyCircle = L.circle(latlng, 0, this.accuracyCircle); |
||
| 36 | this.outerCircle = L.circleMarker(latlng, this.outerCircle); |
||
| 37 | L.CircleMarker.prototype.initialize.call(this, latlng, this.innerCircle); |
||
| 38 | |||
| 39 | this.on('remove', function () { |
||
| 40 | this._map.removeLayer(this.accuracyCircle); |
||
| 41 | this._map.removeLayer(this.outerCircle); |
||
| 42 | }); |
||
| 43 | }, |
||
| 44 | |||
| 62 |